map

pure constructor()

Construct a new empty map.

Since

0.6.0


pure constructor(entries: iterable<-map_entry<K,V>>)

Construct a new map by copying the entries from another iterable. The provided entries are an iterable with element type map_entry<K,V>; a supertype of the two-element tuple (K,V).

Since

0.6.0

Parameters

entries

entries with which to populate the map